home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / varia / egebook.lha / ege.book / 5 / Makefile < prev    next >
Makefile  |  1992-06-07  |  498b  |  15 lines

  1. include ../config.h
  2. OBJ = initialize.o Collection.o Teacher.o Person.o \
  3.       Course.o TeachingAssistant.o Schedule.o ScheduledCourse.o Student.o
  4. HDR = Example.h Collection.h Course.h Teacher.h Person.h Employee.h \
  5.       Student.h TeachingAssistant.h Researcher.h Schedule.h ScheduledCourse.h \
  6.       Professor.h
  7. all: $(LDLIBS) simpleio schedule
  8. schedule: ${OBJ} main.o $(HDR)
  9.     $(CCC) $(OBJ) main.o -o schedule $(LDLIBS)
  10. $(OBJ): $(HDR)
  11. main.o: Professor.h
  12. clean:
  13.     $(RM) simpleio schedule *.o *~
  14.  
  15.